home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / Perl / config.H < prev    next >
Text File  |  1993-12-14  |  26KB  |  891 lines

  1. #ifndef config_h
  2. #define config_h
  3. #ifdef macintosh
  4. /* config.h
  5.  * On the Mac, this file is configured manually, as opposed to what the 
  6.  * comment below says.
  7.  */
  8. #else
  9. /* config.h
  10.  * This file was produced by running the config.h.SH script, which
  11.  * gets its values from config.sh, which is generally produced by
  12.  * running Configure.
  13.  *
  14.  * Feel free to modify any of this as the need arises.  Note, however,
  15.  * that running config.h.SH again will wipe out any changes you've made.
  16.  * For a more permanent change edit config.sh and rerun config.h.SH.
  17.  *
  18.  */
  19.  /*SUPPRESS 460*/
  20. #endif
  21.  
  22. /* EUNICE
  23.  *    This symbol, if defined, indicates that the program is being compiled
  24.  *    under the EUNICE package under VMS.  The program will need to handle
  25.  *    things like files that don't go away the first time you unlink them,
  26.  *    due to version numbering.  It will also need to compensate for lack
  27.  *    of a respectable link() command.
  28.  */
  29. /* VMS
  30.  *    This symbol, if defined, indicates that the program is running under
  31.  *    VMS.  It is currently only set in conjunction with the EUNICE symbol.
  32.  */
  33. #undef    EUNICE        /**/
  34. #undef    VMS            /**/
  35.  
  36. /* LOC_SED
  37.  *     This symbol holds the complete pathname to the sed program.
  38.  */
  39. #define LOC_SED "/bin/sed"             /**/
  40.  
  41. /* ALIGNBYTES
  42.  *    This symbol contains the number of bytes required to align a double.
  43.  *    Usual values are 2, 4, and 8.
  44.  */
  45. #define ALIGNBYTES 4        /**/
  46.  
  47. /* BIN
  48.  *    This symbol holds the name of the directory in which the user wants
  49.  *    to keep publicly executable images for the package in question.  It
  50.  *    is most often a local directory such as /usr/local/bin.
  51.  */
  52. #define BIN "merlin:MPW:Tools"             /**/
  53.  
  54. /* BYTEORDER
  55.  *    This symbol contains an encoding of the order of bytes in a long.
  56.  *    Usual values (in hex) are 0x1234, 0x4321, 0x2143, 0x3412...
  57.  */
  58. #define BYTEORDER 0x4321        /**/
  59.  
  60. /* CPPSTDIN
  61.  *    This symbol contains the first part of the string which will invoke
  62.  *    the C preprocessor on the standard input and produce to standard
  63.  *    output.     Typical value of "cc -E" or "/lib/cpp".
  64.  */
  65. /* CPPMINUS
  66.  *    This symbol contains the second part of the string which will invoke
  67.  *    the C preprocessor on the standard input and produce to standard
  68.  *    output.  This symbol will have the value "-" if CPPSTDIN needs a minus
  69.  *    to specify standard input, otherwise the value is "".
  70.  */
  71. #define CPPSTDIN "C -e"
  72. #define CPPMINUS ""
  73.  
  74. /* HAS_BCMP
  75.  *    This symbol, if defined, indicates that the bcmp routine is available
  76.  *    to compare blocks of memory.  If undefined, use memcmp.  If that's
  77.  *    not available, roll your own.
  78.  */
  79. #define    HAS_BCMP        /**/
  80.  
  81. /* HAS_BCOPY
  82.  *    This symbol, if defined, indicates that the bcopy routine is available
  83.  *    to copy blocks of memory.  Otherwise you should probably use memcpy().
  84. +  *    If neither is defined, roll your own.
  85.    */
  86. /* SAFE_BCOPY
  87.  *    This symbol, if defined, indicates that the bcopy routine is available
  88.  *    to copy potentially overlapping copy blocks of bcopy.  Otherwise you
  89.  *    should probably use memmove() or memcpy().  If neither is defined,
  90.  *    roll your own.
  91.  */
  92. #undef    HAS_BCOPY        /**/
  93. #undef    SAFE_BCOPY        /**/
  94.  
  95. /* HAS_BZERO
  96.  *    This symbol, if defined, indicates that the bzero routine is available
  97.  *    to zero blocks of memory.  Otherwise you should probably use memset()
  98.  *    or roll your own.
  99.  */
  100. #undef    HAS_BZERO        /**/
  101.  
  102. /* CASTNEGFLOAT
  103.  *    This symbol, if defined, indicates that this C compiler knows how to
  104.  *    cast negative or large floating point numbers to unsigned longs, ints
  105.  *    and shorts.
  106.  */
  107. /* CASTFLAGS
  108.  *    This symbol contains flags that say what difficulties the compiler
  109.  *    has casting odd floating values to unsigned long:
  110.  *        1 = couldn't cast < 0
  111.  *        2 = couldn't cast >= 0x80000000
  112.  */
  113. #define    CASTNEGFLOAT    /**/
  114. #define    CASTFLAGS 0    /**/
  115.  
  116. /* CHARSPRINTF
  117.  *    This symbol is defined if this system declares "char *sprintf()" in
  118.  *    stdio.h.  The trend seems to be to declare it as "int sprintf()".  It
  119.  *    is up to the package author to declare sprintf correctly based on the
  120.  *    symbol.
  121.  */
  122. #undef    CHARSPRINTF     /**/
  123.  
  124. /* HAS_CHSIZE
  125.  *    This symbol, if defined, indicates that the chsize routine is available
  126.  *    to truncate files.  You might need a -lx to get this routine.
  127.  */
  128. #undef    HAS_CHSIZE        /**/
  129.  
  130. /* HAS_CRYPT
  131.  *    This symbol, if defined, indicates that the crypt routine is available
  132.  *    to encrypt passwords and the like.
  133.  */
  134. #undef    HAS_CRYPT        /**/
  135.  
  136. /* CSH
  137.  *    This symbol, if defined, indicates that the C-shell exists.
  138.  *    If defined, contains the full pathname of csh.
  139.  */
  140. #undef CSH "/bin/csh"        /**/
  141.  
  142. /* DOSUID
  143.  *    This symbol, if defined, indicates that the C program should
  144.  *    check the script that it is executing for setuid/setgid bits, and
  145.  *    attempt to emulate setuid/setgid on systems that have disabled
  146.  *    setuid #! scripts because the kernel can't do it securely.
  147.  *    It is up to the package designer to make sure that this emulation
  148.  *    is done securely.  Among other things, it should do an fstat on
  149.  *    the script it just opened to make sure it really is a setuid/setgid
  150.  *    script, it should make sure the arguments passed correspond exactly
  151.  *    to the argument on the #! line, and it should not trust any
  152.  *    subprocesses to which it must pass the filename rather than the
  153.  *    file descriptor of the script to be executed.
  154.  */
  155. #undef DOSUID        /**/
  156.  
  157. /* HAS_DUP2
  158.  *    This symbol, if defined, indicates that the dup2 routine is available
  159.  *    to dup file descriptors.  Otherwise you should use dup().
  160.  */
  161. #define    HAS_DUP2        /**/
  162.  
  163. /* HAS_FCHMOD
  164.  *    This symbol, if defined, indicates that the fchmod routine is available
  165.  *    to change mode of opened files.  If unavailable, use chmod().
  166.  */
  167. #undef    HAS_FCHMOD        /**/
  168.  
  169. /* HAS_FCHOWN
  170.  *    This symbol, if defined, indicates that the fchown routine is available
  171.  *    to change ownership of opened files.  If unavailable, use chown().
  172.  */
  173. #undef    HAS_FCHOWN        /**/
  174.  
  175. /* HAS_FCNTL
  176.  *    This symbol, if defined, indicates to the C program that
  177.  *    the fcntl() function exists.
  178.  */
  179. #define    HAS_FCNTL        /**/
  180.  
  181. /* FLEXFILENAMES
  182.  *    This symbol, if defined, indicates that the system supports filenames
  183.  *    longer than 14 characters.
  184.  */
  185. #define    FLEXFILENAMES        /**/
  186.  
  187. /* HAS_FLOCK
  188.  *    This symbol, if defined, indicates that the flock() routine is
  189.  *    available to do file locking.
  190.  */
  191. #undef    HAS_FLOCK        /**/
  192.  
  193. /* HAS_GETGROUPS
  194.  *    This symbol, if defined, indicates that the getgroups() routine is
  195.  *    available to get the list of process groups.  If unavailable, multiple
  196.  *    groups are probably not supported.
  197.  */
  198. #undef    HAS_GETGROUPS        /**/
  199.  
  200. /* HAS_GETHOSTENT
  201.  *    This symbol, if defined, indicates that the gethostent() routine is
  202.  *    available to lookup host names in some data base or other.
  203.  */
  204. #undef    HAS_GETHOSTENT        /**/
  205.  
  206. /* HAS_GETPGRP
  207.  *    This symbol, if defined, indicates that the getpgrp() routine is
  208.  *    available to get the current process group.
  209.  */
  210. #undef    HAS_GETPGRP        /**/
  211.  
  212. /* HAS_GETPGRP2
  213.  *    This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
  214.  *    routine is available to get the current process group.
  215.  */
  216. #undef    HAS_GETPGRP2        /**/
  217.  
  218. /* HAS_GETPRIORITY
  219.  *    This symbol, if defined, indicates that the getpriority() routine is
  220.  *    available to get a process's priority.
  221.  */
  222. #undef    HAS_GETPRIORITY        /**/
  223.  
  224. /* HAS_HTONS
  225.  *    This symbol, if defined, indicates that the htons routine (and friends)
  226.  *    are available to do network order byte swapping.
  227.  */
  228. /* HAS_HTONL
  229.  *    This symbol, if defined, indicates that the htonl routine (and friends)
  230.  *    are available to do network order byte swapping.
  231.  */
  232. /* HAS_NTOHS
  233.  *    This symbol, if defined, indicates that the ntohs routine (and friends)
  234.  *    are available to do network order byte swapping.
  235.  */
  236. /* HAS_NTOHL
  237.  *    This symbol, if defined, indicates that the ntohl routine (and friends)
  238.  *    are available to do network order byte swapping.
  239.  */
  240. #define    HAS_HTONS    /**/
  241. #define    HAS_HTONL    /**/
  242. #define    HAS_NTOHS    /**/
  243. #define    HAS_NTOHL    /**/
  244.  
  245. /* index
  246.  *    This preprocessor symbol is defined, along with rindex, if the system
  247.  *    uses the strchr and strrchr routines instead.
  248.  */
  249. /* rindex
  250.  *    This preprocessor symbol is defined, along with index, if the system
  251.  *    uses the strchr and strrchr routines instead.
  252.  */
  253. /* #define    index strchr    /* cultural */
  254. /* #define    rindex strrchr    /*  differences? */
  255.  
  256. /* HAS_ISASCII
  257.  *    This symbol, if defined, indicates that the isascii routine is available
  258.  *    to test characters for asciiness.
  259.  */
  260. #define    HAS_ISASCII        /**/
  261.  
  262. /* HAS_KILLPG
  263.  *    This symbol, if defined, indicates that the killpg routine is available
  264.  *    to kill process groups.  If unavailable, you probably should use kill
  265.  *    with a negative process number.
  266.  */
  267. #undef    HAS_KILLPG        /**/
  268.  
  269. /* HAS_LSTAT
  270.  *    This symbol, if defined, indicates that the lstat() routine is
  271.  *    available to stat symbolic links.
  272.  */
  273. #define    HAS_LSTAT        /**/
  274.  
  275. /* HAS_MEMCMP
  276.  *    This symbol, if defined, indicates that the memcmp routine is available
  277.  *    to compare blocks of memory.  If undefined, roll your own.
  278.  */
  279. #define    HAS_MEMCMP        /**/
  280.  
  281. /* HAS_MEMCPY
  282.  *    This symbol, if defined, indicates that the memcpy routine is available
  283.  *    to copy blocks of memory.  Otherwise you should probably use bcopy().
  284.  *    If neither is defined, roll your own.
  285.  */
  286. /* SAFE_MEMCPY
  287.  *    This symbol, if defined, indicates that the memcpy routine is available
  288.  *    to copy potentially overlapping copy blocks of memory.  Otherwise you
  289.  *    should probably use memmove() or bcopy().  If neither is defined,
  290.  *    roll your own.
  291.  */
  292. #define    HAS_MEMCPY        /**/
  293. /*#undef    SAFE_MEMCPY        /**/
  294.  
  295. /* HAS_MEMMOVE
  296.  *    This symbol, if defined, indicates that the memmove routine is available
  297.  *    to move potentially overlapping blocks of memory.  Otherwise you
  298.  *    should use bcopy() or roll your own.
  299.  */
  300. #define    HAS_MEMMOVE        /**/
  301.  
  302. /* HAS_MEMSET
  303.  *    This symbol, if defined, indicates that the memset routine is available
  304.  *    to set a block of memory to a character.  If undefined, roll your own.
  305.  */
  306. #define    HAS_MEMSET        /**/
  307.  
  308. /* HAS_MKDIR
  309.  *    This symbol, if defined, indicates that the mkdir routine is available
  310.  *    to create directories.  Otherwise you should fork off a new process to
  311.  *    exec /bin/mkdir.
  312.  */
  313. #define    HAS_MKDIR        /**/
  314.  
  315. /* HAS_MSG
  316.  *    This symbol, if defined, indicates that the entire msg*(2) library is
  317.  *    supported.
  318.  */
  319. #undef    HAS_MSG        /**/
  320.  
  321. /* HAS_MSGCTL
  322.  *    This symbol, if defined, indicates that the msgctl() routine is
  323.  *    available to control message passing.
  324.  */
  325. #undef    HAS_MSGCTL        /**/
  326.  
  327. /* HAS_MSGGET
  328.  *    This symbol, if defined, indicates that the msgget() routine is
  329.  *    available to get messages.
  330.  */
  331. #define    HAS_MSGGET        /**/
  332.  
  333. /* HAS_MSGRCV
  334.  *    This symbol, if defined, indicates that the msgrcv() routine is
  335.  *    available to receive messages.
  336.  */
  337. #undef    HAS_MSGRCV        /**/
  338.  
  339. /* HAS_MSGSND
  340.  *    This symbol, if defined, indicates that the msgsnd() routine is
  341.  *    available to send messages.
  342.  */
  343. #undef    HAS_MSGSND        /**/
  344.  
  345. /* HAS_GDBM
  346.  *    This symbol, if defined, indicates that gdbm.h exists and should
  347.  *    be included.
  348.  */
  349. #undef    HAS_GDBM        /**/
  350.  
  351. /* HAS_NDBM
  352.  *    This symbol, if defined, indicates that ndbm.h exists and should
  353.  *    be included.
  354.  */
  355. #define    HAS_NDBM        /**/
  356.  
  357. /* HAS_ODBM
  358.  *    This symbol, if defined, indicates that dbm.h exists and should
  359.  *    be included.
  360.  */
  361. #undef    HAS_ODBM        /**/
  362.  
  363. /* HAS_OPEN3
  364.  *    This manifest constant lets the C program know that the three
  365.  *    argument form of open(2) is available.
  366.  */
  367. #undef    HAS_OPEN3        /**/
  368.  
  369. /* HAS_READDIR
  370.  *    This symbol, if defined, indicates that the readdir routine is available
  371.  *    from the C library to read directories.
  372.  */
  373. #define    HAS_READDIR        /**/
  374.  
  375. /* HAS_RENAME
  376.  *    This symbol, if defined, indicates that the rename routine is available
  377.  *    to rename files.  Otherwise you should do the unlink(), link(), unlink()
  378.  *    trick.
  379.  */
  380. #define    HAS_RENAME        /**/
  381.  
  382. /* HAS_REWINDDIR
  383.  *    This symbol, if defined, indicates that the rewindir routine is
  384.  *    available to rewind directories.
  385.  */
  386. #define    HAS_REWINDDIR        /**/
  387.  
  388. /* HAS_RMDIR
  389.  *    This symbol, if defined, indicates that the rmdir routine is available
  390.  *    to remove directories.  Otherwise you should fork off a new process to
  391.  *    exec /bin/rmdir.
  392.  */
  393. #define    HAS_RMDIR        /**/
  394.  
  395. /* HAS_SEEKDIR
  396.  *    This symbol, if defined, indicates that the seekdir routine is
  397.  *    available to seek into directories.
  398.  */
  399. #define    HAS_SEEKDIR        /**/
  400.  
  401. /* HAS_SELECT
  402.  *    This symbol, if defined, indicates that the select() subroutine
  403.  *    exists.
  404.  */
  405. #define    HAS_SELECT    /**/
  406.  
  407. /* HAS_SEM
  408.  *    This symbol, if defined, indicates that the entire sem*(2) library is
  409.  *    supported.
  410.  */
  411. #undef    HAS_SEM        /**/
  412.  
  413. /* HAS_SEMCTL
  414.  *    This symbol, if defined, indicates that the semctl() routine is
  415.  *    available to control semaphores.
  416.  */
  417. #undef    HAS_SEMCTL        /**/
  418.  
  419. /* HAS_SEMGET
  420.  *    This symbol, if defined, indicates that the semget() routine is
  421.  *    available to get semaphores ids.
  422.  */
  423. #undef    HAS_SEMGET        /**/
  424.  
  425. /* HAS_SEMOP
  426.  *    This symbol, if defined, indicates that the semop() routine is
  427.  *    available to perform semaphore operations.
  428.  */
  429. #undef    HAS_SEMOP        /**/
  430.  
  431. /* HAS_SETEGID
  432.  *    This symbol, if defined, indicates that the setegid routine is available
  433.  *    to change the effective gid of the current program.
  434.  */
  435. #undef    HAS_SETEGID        /**/
  436.  
  437. /* HAS_SETEUID
  438.  *    This symbol, if defined, indicates that the seteuid routine is available
  439.  *    to change the effective uid of the current program.
  440.  */
  441. #undef    HAS_SETEUID        /**/
  442.  
  443. /* HAS_SETPGRP
  444.  *    This symbol, if defined, indicates that the setpgrp() routine is
  445.  *    available to set the current process group.
  446.  */
  447. #undef    HAS_SETPGRP        /**/
  448.  
  449. /* HAS_SETPGRP2
  450.  *    This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
  451.  *    routine is available to set the current process group.
  452.  */
  453. /*#undef    HAS_SETPGRP2        /**/
  454.  
  455. /* HAS_SETPRIORITY
  456.  *    This symbol, if defined, indicates that the setpriority() routine is
  457.  *    available to set a process's priority.
  458.  */
  459. #undef    HAS_SETPRIORITY        /**/
  460.  
  461. /* HAS_SETREGID
  462.  *    This symbol, if defined, indicates that the setregid routine is
  463.  *    available to change the real and effective gid of the current program.
  464.  */
  465. /* HAS_SETRESGID
  466.  *    This symbol, if defined, indicates that the setresgid routine is
  467.  *    available to change the real, effective and saved gid of the current
  468.  *    program.
  469.  */
  470. #undef    HAS_SETREGID        /**/
  471.  
  472. /* HAS_SETREUID
  473.  *    This symbol, if defined, indicates that the setreuid routine is
  474.  *    available to change the real and effective uid of the current program.
  475.  */
  476. /* HAS_SETRESUID
  477.  *    This symbol, if defined, indicates that the setresuid routine is
  478.  *    available to change the real, effective and saved uid of the current
  479.  *    program.
  480.  */
  481. #undef    HAS_SETREUID        /**/
  482.  
  483. /* HAS_SETRGID
  484.  *    This symbol, if defined, indicates that the setrgid routine is available
  485.  *    to change the real gid of the current program.
  486.  */
  487. #undef    HAS_SETRGID        /**/
  488.  
  489. /* HAS_SETRUID
  490.  *    This symbol, if defined, indicates that the setruid routine is available
  491.  *    to change the real uid of the current program.
  492.  */
  493. #undef    HAS_SETRUID        /**/
  494.  
  495. /* HAS_SHM
  496.  *    This symbol, if defined, indicates that the entire shm*(2) library is
  497.  *    supported.
  498.  */
  499. #undef    HAS_SHM        /**/
  500.  
  501. /* HAS_SHMAT
  502.  *    This symbol, if defined, indicates that the shmat() routine is
  503.  *    available to attach a shared memory segment.
  504.  */
  505. #undef    HAS_SHMAT        /**/
  506.  
  507. /* HAS_SHMCTL
  508.  *    This symbol, if defined, indicates that the shmctl() routine is
  509.  *    available to control a shared memory segment.
  510.  */
  511. #undef    HAS_SHMCTL        /**/
  512.  
  513. /* HAS_SHMDT
  514.  *    This symbol, if defined, indicates that the shmdt() routine is
  515.  *    available to detach a shared memory segment.
  516.  */
  517. #undef    HAS_SHMDT        /**/
  518.  
  519. /* HAS_SHMGET
  520.  *    This symbol, if defined, indicates that the shmget() routine is
  521.  *    available to get a shared memory segment id.
  522.  */
  523. #undef    HAS_SHMGET        /**/
  524.  
  525. /* HAS_SOCKET
  526.  *    This symbol, if defined, indicates that the BSD socket interface is
  527.  *    supported.
  528.  */
  529. /* HAS_SOCKETPAIR
  530.  *    This symbol, if defined, indicates that the BSD socketpair call is
  531.  *    supported.
  532.  */
  533. /* OLDSOCKET
  534.  *    This symbol, if defined, indicates that the 4.1c BSD socket interface
  535.  *    is supported instead of the 4.2/4.3 BSD socket interface.
  536.  */
  537. #define    HAS_SOCKET        /**/
  538.  
  539. #undef    HAS_SOCKETPAIR    /**/
  540.  
  541. #undef    OLDSOCKET    /**/
  542.  
  543. /* STATBLOCKS
  544.  *    This symbol is defined if this system has a stat structure declaring
  545.  *    st_blksize and st_blocks.
  546.  */
  547. #define    STATBLOCKS     /**/
  548.  
  549. /* STDSTDIO
  550.  *    This symbol is defined if this system has a FILE structure declaring
  551.  *    _ptr and _cnt in stdio.h.
  552.  */
  553. #define    STDSTDIO     /**/
  554.  
  555. /* STRUCTCOPY
  556.  *    This symbol, if defined, indicates that this C compiler knows how
  557.  *    to copy structures.  If undefined, you'll need to use a block copy
  558.  *    routine of some sort instead.
  559.  */
  560. #define    STRUCTCOPY    /**/
  561.  
  562. /* HAS_STRERROR
  563.  *    This symbol, if defined, indicates that the strerror() routine is
  564.  *    available to translate error numbers to strings.
  565.  */
  566. #define    HAS_STRERROR        /**/
  567.  
  568. /* HAS_SYMLINK
  569.  *    This symbol, if defined, indicates that the symlink routine is available
  570.  *    to create symbolic links.
  571.  */
  572. #define    HAS_SYMLINK        /**/
  573.  
  574. /* HAS_SYSCALL
  575.  *    This symbol, if defined, indicates that the syscall routine is available
  576.  *    to call arbitrary system calls.  If undefined, that's tough.
  577.  */
  578. #undef    HAS_SYSCALL        /**/
  579.  
  580. /* HAS_TELLDIR
  581.  *    This symbol, if defined, indicates that the telldir routine is
  582.  *    available to tell your location in directories.
  583.  */
  584. #define    HAS_TELLDIR        /**/
  585.  
  586. /* HAS_TRUNCATE
  587.  *    This symbol, if defined, indicates that the truncate routine is
  588.  *    available to truncate files.
  589.  */
  590. #define    HAS_TRUNCATE        /**/
  591.  
  592. /* HAS_VFORK
  593.  *    This symbol, if defined, indicates that vfork() exists.
  594.  */
  595. #undef    HAS_VFORK    /**/
  596.  
  597. /* VOIDSIG
  598.  *    This symbol is defined if this system declares "void (*signal())()" in
  599.  *    signal.h.  The old way was to declare it as "int (*signal())()".  It
  600.  *    is up to the package author to declare things correctly based on the
  601.  *    symbol.
  602.  */
  603. /* TO_SIGNAL
  604.  *    This symbol's value is either "void" or "int", corresponding to the
  605.  *    appropriate return "type" of a signal handler.  Thus, one can declare
  606.  *    a signal handler using "TO_SIGNAL (*handler())()", and define the
  607.  *    handler using "TO_SIGNAL handler(sig)".
  608.  */
  609. #define    VOIDSIG     /**/
  610. #define    TO_SIGNAL     void    /**/
  611.  
  612. /* HASVOLATILE
  613.  *    This symbol, if defined, indicates that this C compiler knows about
  614.  *    the volatile declaration.
  615.  */
  616. #undef    HASVOLATILE    /**/
  617.  
  618. /* HAS_VPRINTF
  619.  *    This symbol, if defined, indicates that the vprintf routine is available
  620.  *    to printf with a pointer to an argument list.  If unavailable, you
  621.  *    may need to write your own, probably in terms of _doprnt().
  622.  */
  623. /* CHARVSPRINTF
  624.  *    This symbol is defined if this system has vsprintf() returning type
  625.  *    (char*).  The trend seems to be to declare it as "int vsprintf()".  It
  626.  *    is up to the package author to declare vsprintf correctly based on the
  627.  *    symbol.
  628.  */
  629. #define    HAS_VPRINTF    /**/
  630. /*#undef    CHARVSPRINTF     /**/
  631.  
  632. /* HAS_WAIT4
  633.  *    This symbol, if defined, indicates that wait4() exists.
  634.  */
  635. #undef    HAS_WAIT4    /**/
  636.  
  637. /* HAS_WAITPID
  638.  *    This symbol, if defined, indicates that waitpid() exists.
  639.  */
  640. #undef    HAS_WAITPID    /**/
  641.  
  642. /* GIDTYPE
  643.  *    This symbol has a value like gid_t, int, ushort, or whatever type is
  644.  *    used to declare group ids in the kernel.
  645.  */
  646. #define GIDTYPE int        /**/
  647.  
  648. /* I_FCNTL
  649.  *    This manifest constant tells the C program to include <fcntl.h>.
  650.  */
  651. #define    I_FCNTL    /**/
  652.  
  653. /* I_GDBM
  654.  *    This symbol, if defined, indicates that gdbm.h exists and should
  655.  *    be included.
  656.  */
  657. #undef    I_GDBM        /**/
  658.  
  659. /* I_GRP
  660.  *    This symbol, if defined, indicates to the C program that it should
  661.  *    include grp.h.
  662.  */
  663. #undef    I_GRP        /**/
  664.  
  665. /* I_NETINET_IN
  666.  *    This symbol, if defined, indicates to the C program that it should
  667.  *    include netinet/in.h.
  668.  */
  669. /* I_SYS_IN
  670.  *    This symbol, if defined, indicates to the C program that it should
  671.  *    include sys/in.h.
  672.  */
  673. #define    I_NETINET_IN    /**/
  674. #undef    I_SYS_IN            /**/
  675.  
  676. /* I_PWD
  677.  *    This symbol, if defined, indicates to the C program that it should
  678.  *    include pwd.h.
  679.  */
  680. /* PWQUOTA
  681.  *    This symbol, if defined, indicates to the C program that struct passwd
  682.  *    contains pw_quota.
  683.  */
  684. /* PWAGE
  685.  *    This symbol, if defined, indicates to the C program that struct passwd
  686.  *    contains pw_age.
  687.  */
  688. /* PWCHANGE
  689.  *    This symbol, if defined, indicates to the C program that struct passwd
  690.  *    contains pw_change.
  691.  */
  692. /* PWCLASS
  693.  *    This symbol, if defined, indicates to the C program that struct passwd
  694.  *    contains pw_class.
  695.  */
  696. /* PWEXPIRE
  697.  *    This symbol, if defined, indicates to the C program that struct passwd
  698.  *    contains pw_expire.
  699.  */
  700. /* PWCOMMENT
  701.  *    This symbol, if defined, indicates to the C program that struct passwd
  702.  *    contains pw_comment.
  703.  */
  704. #undef    I_PWD        /**/
  705. #undef    PWQUOTA        /**/
  706. #undef    PWAGE        /**/
  707. #undef    PWCHANGE    /**/
  708. #undef    PWCLASS        /**/
  709. #undef    PWEXPIRE    /**/
  710. #undef    PWCOMMENT    /**/
  711.  
  712. /* I_SYS_FILE
  713.  *    This manifest constant tells the C program to include <sys/file.h>.
  714.  */
  715. #define    I_SYS_FILE    /**/
  716.  
  717. /* I_SYSIOCTL
  718.  *    This symbol, if defined, indicates that sys/ioctl.h exists and should
  719.  *    be included.
  720.  */
  721. #define    I_SYSIOCTL        /**/
  722.  
  723. /* I_TIME
  724.  *    This symbol is defined if the program should include <time.h>.
  725.  */
  726. /* I_SYS_TIME
  727.  *    This symbol is defined if the program should include <sys/time.h>.
  728.  */
  729. /* SYSTIMEKERNEL
  730.  *    This symbol is defined if the program should include <sys/time.h>
  731.  *    with KERNEL defined.
  732.  */
  733. /* I_SYS_SELECT
  734.  *    This symbol is defined if the program should include <sys/select.h>.
  735.  */
  736. #define    I_TIME         /**/
  737. #define    I_SYS_TIME     /**/
  738. #undef    SYSTIMEKERNEL     /**/
  739. #undef    I_SYS_SELECT     /**/
  740.  
  741. /* I_UTIME
  742.  *    This symbol, if defined, indicates to the C program that it should
  743.  *    include utime.h.
  744.  */
  745. #undef    I_UTIME        /**/
  746.  
  747. /* I_VARARGS
  748.  *    This symbol, if defined, indicates to the C program that it should
  749.  *    include varargs.h.
  750.  */
  751. #undef    I_VARARGS        /**/
  752.  
  753. /* I_VFORK
  754.  *    This symbol, if defined, indicates to the C program that it should
  755.  *    include vfork.h.
  756.  */
  757. #undef    I_VFORK        /**/
  758.  
  759. /* INTSIZE
  760.  *    This symbol contains the size of an int, so that the C preprocessor
  761.  *    can make decisions based on it.
  762.  */
  763. #define INTSIZE 4        /**/
  764.  
  765. /* I_DIRENT
  766.  *    This symbol, if defined, indicates that the program should use the
  767.  *    P1003-style directory routines, and include <dirent.h>.
  768.  */
  769. /* I_SYS_DIR
  770.  *    This symbol, if defined, indicates that the program should use the
  771.  *    directory functions by including <sys/dir.h>.
  772.  */
  773. /* I_NDIR
  774.  *    This symbol, if defined, indicates that the program should include the
  775.  *    system's version of ndir.h, rather than the one with this package.
  776.  */
  777. /* I_SYS_NDIR
  778.  *    This symbol, if defined, indicates that the program should include the
  779.  *    system's version of sys/ndir.h, rather than the one with this package.
  780.  */
  781. /* I_MY_DIR
  782.  *    This symbol, if defined, indicates that the program should compile
  783.  *    the ndir.c code provided with the package.
  784.  */
  785. /* DIRNAMLEN
  786.  *    This symbol, if defined, indicates to the C program that the length
  787.  *    of directory entry names is provided by a d_namlen field.  Otherwise
  788.  *    you need to do strlen() on the d_name field.
  789.  */
  790. #define    I_DIRENT    /**/
  791. #undef    I_SYS_DIR    /**/
  792. #undef    I_NDIR        /**/
  793. #undef    I_SYS_NDIR    /**/
  794. #undef    I_MY_DIR    /**/
  795. #define    DIRNAMLEN    /**/
  796.  
  797. /* MYMALLOC
  798.  *    This symbol, if defined, indicates that we're using our own malloc.
  799.  */
  800. /* MALLOCPTRTYPE
  801.  *    This symbol defines the kind of ptr returned by malloc and realloc.
  802.  */
  803. #undef MYMALLOC            /**/
  804.  
  805. #define MALLOCPTRTYPE void         /**/
  806.  
  807. /* RANDBITS
  808.  *    This symbol contains the number of bits of random number the rand()
  809.  *    function produces.  Usual values are 15, 16, and 31.
  810.  */
  811. #define RANDBITS 15        /**/
  812.  
  813. /* SCRIPTDIR
  814.  *    This symbol holds the name of the directory in which the user wants
  815.  *    to put publicly executable scripts for the package in question.  It
  816.  *    is often a directory that is mounted across diverse architectures.
  817.  */
  818. #define SCRIPTDIR ""             /**/
  819.  
  820. /* SIG_NAME
  821.  *    This symbol contains an list of signal names in order.
  822.  */
  823. #define SIG_NAME "ZERO","ABRT","INT","FPE","ILL","SEGV","TERM"        /**/
  824.  
  825. /* STDCHAR
  826.  *    This symbol is defined to be the type of char used in stdio.h.
  827.  *    It has the values "unsigned char" or "char".
  828.  */
  829. #define STDCHAR char    /**/
  830.  
  831. /* UIDTYPE
  832.  *    This symbol has a value like uid_t, int, ushort, or whatever type is
  833.  *    used to declare user ids in the kernel.
  834.  */
  835. #define UIDTYPE int        /**/
  836.  
  837. /* VOIDHAVE
  838.  *    This symbol indicates how much support of the void type is given by this
  839.  *    compiler.  What various bits mean:
  840.  *
  841.  *        1 = supports declaration of void
  842.  *        2 = supports arrays of pointers to functions returning void
  843.  *        4 = supports comparisons between pointers to void functions and
  844.  *            addresses of void functions
  845.  *
  846.  *    The package designer should define VOIDWANT to indicate the requirements
  847.  *    of the package.  This can be done either by #defining VOIDWANT before
  848.  *    including config.h, or by defining voidwant in Myinit.U.  If the level
  849.  *    of void support necessary is not present, config.h defines void to "int",
  850.  *    VOID to the empty string, and VOIDP to "char *".
  851.  */
  852. /* void
  853.  *    This symbol is used for void casts.  On implementations which support
  854.  *    void appropriately, its value is "void".  Otherwise, its value maps
  855.  *    to "int".
  856.  */
  857. /* VOID
  858.  *    This symbol's value is "void" if the implementation supports void
  859.  *    appropriately.  Otherwise, its value is the empty string.  The primary
  860.  *    use of this symbol is in specifying void parameter lists for function
  861.  *    prototypes.
  862.  */
  863. /* VOIDP
  864.  *    This symbol is used for casting generic pointers.  On implementations
  865.  *    which support void appropriately, its value is "void *".  Otherwise,
  866.  *    its value is "char *".
  867.  */
  868. #ifndef VOIDWANT
  869. #define VOIDWANT 1
  870. #endif
  871. #define VOIDHAVE 7
  872. #if (VOIDHAVE & VOIDWANT) != VOIDWANT
  873. #define void int        /* is void to be avoided? */
  874. #define VOID
  875. #define VOIDP (char *)
  876. #define M_VOID        /* Xenix strikes again */
  877. #else
  878. #define VOID void
  879. #define VOIDP (void *)
  880. #endif
  881.  
  882. /* PRIVLIB
  883.  *    This symbol contains the name of the private library for this package.
  884.  *    The library is private in the sense that it needn't be in anyone's
  885.  *    execution path, but it should be accessible by the world.  The program
  886.  *    should be prepared to do ~ expansion.
  887.  */
  888. /*#define PRIVLIB ""        */
  889.  
  890. #endif
  891.